home *** CD-ROM | disk | FTP | other *** search
- function tabPrefInit() {
- tabCustomColorsChanged();
- tabScrollTypeChanged();
- }
-
- function tabCustomColorsChanged() {
- var tabCustomColorsCheckbox = document.getElementById("tabCustomColors");
- document.getElementById("tabCustomTitleColorLabel").disabled = !tabCustomColorsCheckbox.checked;
- document.getElementById("tabCustomTitleColor").disabled = !tabCustomColorsCheckbox.checked;
- document.getElementById("tabCustomBackgroundColorLabel").disabled = !tabCustomColorsCheckbox.checked;
- document.getElementById("tabCustomBackgroundColor").disabled = !tabCustomColorsCheckbox.checked;
- document.getElementById("tabColorizeLabel").disabled = !tabCustomColorsCheckbox.checked;
- }
-
- function tabScrollTypeChanged() {
- var tabScrollTypeComboBox = document.getElementById("tabScrollType");
- document.getElementById("tabThumbnailPreferredMinimumSizeLabel").disabled = (tabScrollTypeComboBox.selectedIndex == 0);
- document.getElementById("tabThumbnailPreferredMinimumSizePixelsLabel").disabled = (tabScrollTypeComboBox.selectedIndex == 0);
- document.getElementById("tabThumbnailPreferredMinimumSize").disabled = (tabScrollTypeComboBox.selectedIndex == 0);
- document.getElementById("tabAlwaysShowScrollbar").disabled = (tabScrollTypeComboBox.selectedIndex == 0);
- }
-